home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libslp1.config < prev    next >
Text File  |  2008-11-09  |  534b  |  24 lines

  1. #!/bin/sh
  2.  
  3. set -e 
  4.  
  5. # Source debconf library.
  6. . /usr/share/debconf/confmodule
  7.                      
  8. # /proc/net/igmp is present only in a multicast kernel
  9. if uname | grep -q Linux && [ -d /proc/net -a ! -f /proc/net/igmp ]
  10. then
  11.     db_input medium libslp1/multicast || true
  12.     db_go
  13. fi
  14.  
  15. # Check for multicast route, 
  16. # Disabled for now because it's not clear whether multicast route is really
  17. # needed.
  18. if ! netstat -rn | grep "224\.0\.0\.0" >/dev/null && false
  19. then
  20.     db_input medium libslp1/multicast-route || true
  21.     db_go
  22. fi
  23.  
  24.